home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Morphos / GCC / ppc-amigaos / include / clib / asl_protos.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  1KB  |  36 lines

  1. #ifndef  CLIB_ASL_PROTOS_H
  2. #define  CLIB_ASL_PROTOS_H
  3.  
  4. /*
  5. **    $VER: asl_protos.h 38.3 (19.3.92)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  UTILITY_TAGITEM_H
  18. #include <utility/tagitem.h>
  19. #endif
  20. #ifndef  LIBRARIES_ASL_H
  21. #include <libraries/asl.h>
  22. #endif
  23. /*--- functions in V36 or higher (Release 2.0) ---*/
  24.  
  25. /* OBSOLETE -- Please use the generic requester functions instead */
  26.  
  27. struct FileRequester *AllocFileRequest( void );
  28. void FreeFileRequest( struct FileRequester *fileReq );
  29. BOOL RequestFile( struct FileRequester *fileReq );
  30. APTR AllocAslRequest( unsigned long reqType, struct TagItem *tagList );
  31. APTR AllocAslRequestTags( unsigned long reqType, Tag Tag1, ... );
  32. void FreeAslRequest( APTR requester );
  33. BOOL AslRequest( APTR requester, struct TagItem *tagList );
  34. BOOL AslRequestTags( APTR requester, Tag Tag1, ... );
  35. #endif     /* CLIB_ASL_PROTOS_H */
  36.